temp_directory


描述

这可用于返回每次运行时为游戏创建的临时目录(根目录不包含最终的 “\”)。This directory will hold files and can be accessed while the game is running, but it will be removed (along with all files that it contains) when the game is closed.

警告! 由于 GameMaker Studio 2 被沙箱化,这些函数可能无法正常工作!有关详细信息,请参阅 文件系统限制 部分。


语法:

temp_directory


返回:

String(字符串)


例如:

ini_open(temp_directory + "\temp_ini.ini");

这将在游戏的临时目录中打开一个 ini 文件(如果它尚不存在则创建它)。